From b3fa47dbc82442b632ef45db863eb015039046b0 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Wed, 14 Feb 2007 12:35:36 +0000 Subject: [PATCH] Add missing breaks to {set,get}_address_size domctls. Signed-off-by: Gerd Hoffmann --- xen/arch/x86/domctl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xen/arch/x86/domctl.c b/xen/arch/x86/domctl.c index 8d4901b0c3..2f06d73cb1 100644 --- a/xen/arch/x86/domctl.c +++ b/xen/arch/x86/domctl.c @@ -398,6 +398,7 @@ long arch_do_domctl( put_domain(d); } + break; case XEN_DOMCTL_get_address_size: { @@ -412,6 +413,7 @@ long arch_do_domctl( ret = 0; put_domain(d); } + break; default: ret = -ENOSYS; -- 2.30.2